IBindingTypeConverter interface¶
Defined in
Namespace: ReactiveUI.Binding
Assembly: ReactiveUI.Binding.dll
Full name: ReactiveUI.Binding.IBindingTypeConverter<T1, T2>
Modifiers: public abstract
Summary¶
Generic type-safe interface for converting between specific types. Implement this alongside IBindingTypeConverter for AOT-safe conversions.
Applies to
net10.0, net10.0-browserwasm1.0, net10.0-desktop1.0, net9.0, net9.0-browserwasm1.0, net9.0-desktop1.0, net8.0, net8.0-ios17.5, net8.0-maccatalyst17.5, net8.0-macos14.2, net8.0-macos14.5, net8.0-tvos17.2, netstandard2.1, net462, net481
Class hierarchy
classDiagram
class IBindingTypeConverter~T1,T2~
class IBindingTypeConverter {
<>
}
IBindingTypeConverter <|.. IBindingTypeConverter~T1,T2~
class IEnableLogger {
<>
}
IEnableLogger <|.. IBindingTypeConverter~T1,T2~
Implements: IBindingTypeConverter, IEnableLogger
Remarks¶
This interface provides compile-time type safety for type conversions, enabling AOT-compatible code paths that avoid boxing and reflection.
The generic TryConvert method is preferred over the base interface's object-based method when types are known at compile time.
Methods¶
| Name | Summary |
|---|---|
| TryConvert | Convert a value to the target type in a type-safe manner. |